home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / pulse.hlp < prev    next >
Text File  |  1979-12-31  |  488b  |  16 lines

  1. PULSE(strtme,endtme)
  2.  
  3. Function whose value is 1.0 when the step time (i.e. variable t) is
  4. greater than or equal to 'strtme' and less than or equal to 'endtme'.
  5. That is,
  6.  
  7.     PULSE = 1  when  strtme <= t <= endtme.
  8.  
  9. Larger pulses can be achieved by multiplying PULSE times a constant.
  10. E.g. 10 * PULSE(0,.001).
  11.  
  12. PULSE can be used to enable/disable an expression at different times
  13. in the processing domain.  For example,
  14.  
  15.     fx = expr1*PULSE(-1000,0) + expr2*PULSE(0,1000);
  16.